Passed
Push — master ( fa13eb...33d68f )
by Felipe Catão do
01:03
created

functionsClass   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 3
dl 0
loc 5
rs 10
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A gotoLink 0 3 1
1
import menu from "../components/menu.js"
2
import EngineApp from '../../Framework/engine.js'
3
import homePage from "../pages/home.js"
4
import routes from '../routes/routes.js'
5
6
var eng=new EngineApp()
7
var rto = new routes()
0 ignored issues
show
Coding Style Best Practice introduced by
By convention, constructors like routes should be capitalized.
Loading history...
8
//renderizar o menu
9
rto.routesCreated()
10
menu(1)
11
12
class functionsClass{
13
    gotoLink(){
14
15
    }
16
}
17
18
export default functionsClass